body{
    background-color: #001B24 ;
    font-family: "Roboto", sans-serif;
    padding: 20px;
    margin: 0;
    overflow-x: hidden;
}

.navm {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.nav-links {
    display: flex;
    gap: 60px;
}
.nav-button{
    display: flex;
    gap: 30px;
}
.nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav a.bt1 {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav a.bt1:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.nav a.bt1::after {
    display: none;
}

.nav a:hover::after {
    width: 100%;
    left: 0;
}

.circle {
    position: absolute;
    width: 750px;
    height: 750px;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #006688 0%, #003E53 40%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.circle2 {
    position: absolute;
    width: 900px;
    height: 900px;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #006688 0%, #003E53 40%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.mainc{
    z-index: 1;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.h1{
    color: white;
    font-size: 85px;
    font-weight: bold;
    margin-bottom: 20px;
}

.t{
    width: 50%;
    min-width: 300px;
}

.h4{
    color: white;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
}

.im1{
    width: 450px;
    max-width: 100%;
    height: auto;
}

.im202{
    width: 40px;
}

.sep{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
}

.sep2{
    display: flex;
    justify-content: center;
    margin-top: 100px;
    position: relative;
}

.main2{
    margin-top: 20px;
}

.h3{
    color: white;
    font-size: 65px;
    font-weight: bold;
    text-align: center;
    padding: 70px 20px;
    margin-bottom: 20px;
}

.h44{
    color: white;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    padding: 0 50px;
    margin-top: -50px;
}

.glass-card {
    width: 417px;
    max-width: 100%;
    height: auto;
    min-height: 417px;
    background: rgba(255, 255, 255, 0.27);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 14px 7px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    margin: 20px;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3)
    );
}

.card-content {
    padding: 40px;
    text-align: left;
    color: #ffffff;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 35px;
    color: #19b3c4;
}

.glass-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}

.glass-card p {
    font-size: 20px;
}

.cards{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
}

.footer {
    background: linear-gradient(0deg,rgba(0, 40, 54, 1) 0%, rgba(0, 94, 126, 1) 31%, rgba(0, 40, 54, 1) 100%);
    color: white;
    padding: 50px 10%;
    text-align: center;
    margin-top: 50px;
}

.fcon{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.h33{
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.h444{
    color: white;
    font-size: 21px;
    font-weight: 300;
    text-align: center;
}

.flinks{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.flinks a{
    text-decoration: underline;
    color: white;
    font-size: 21px;
}

.ft{
    width: 350px;
    max-width: 100%;
}

.ftt{
    font-size: 21px;
    width: 100%;
    margin-top: 30px;
}

.h333{
    color: rgba(255, 255, 255, 0.504);
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 0 20px;
}

.bt2{
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 600;
    color: white;
    font-size: 25px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.bt2:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.imm1{
    width: 50px;
    margin-top: 10px;
}

.sticky-note {
    position: absolute;
    right: 500px;
    background: #add2de;
    color: #001B24;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    transform: rotate(3deg);
    border: 1px solid #ffffff;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-5px); }
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #00bed3;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.8);
    animation: fadeOut 0.5s linear forwards;
    z-index: 200;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .h1 {
        font-size: 70px;
    }
    
    .h3 {
        font-size: 55px;
    }
    
    .h4, .h44 {
        font-size: 28px;
    }
    
    .im1 {
        width: 400px;
    }
    
    .sticky-note {
        right: 300px;
    }
}

@media (max-width: 992px) {
    .mainc {
        flex-direction: column;
        text-align: center;
        margin-top: 120px;
    }
    
    .t {
        width: 100%;
        margin-bottom: 50px;
    }
    
    .h1 {
        font-size: 60px;
    }
    
    .h3 {
        font-size: 50px;
        padding: 50px 20px;
    }
    
    .h4, .h44 {
        font-size: 24px;
    }
    
    .im1 {
        width: 350px;
    }
    
    .cards {
        flex-direction: column;
        align-items: center;
    }
    
    .glass-card {
        width: 80%;
    }
    
    .sticky-note {
        right: 200px;
    }
    
    .fcon {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ft {
        width: 100%;
    }
    
    .flinks {
        flex-direction: row;
        gap: 20px;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    .im202 {
        order: 1;
    }
    
    /* Hide navigation by default on mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 27, 36, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-sizing: border-box;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        z-index: 999;
    }
    
    .nav-button {
        display: none;
        position: absolute;
        top: calc(100% + 180px); /* Adjust based on nav-links height */
        left: 0;
        width: 100%;
        background: rgba(0, 27, 36, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        padding-top: 0;
        box-sizing: border-box;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        align-items: center;
    }
    
    /* Show navigation when active */
    .nav-links.active {
        display: flex;
    }
    
    .nav-button.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 12px;
        display: block;
    }
    
    .nav a.bt1 {
        padding: 12px 30px;
        font-size: 1rem;
        display: inline-block;
        width: auto;
        max-width: 250px;
    }
    
    .h1 {
        font-size: 50px;
    }
    
    .h3 {
        font-size: 40px;
        padding: 30px 20px;
    }
    
    .h4, .h44 {
        font-size: 20px;
    }
    
    .h333 {
        font-size: 24px;
    }
    
    .im1 {
        width: 300px;
    }
    
    .glass-card {
        width: 90%;
    }
    
    .card-content {
        padding: 30px;
    }
    
    .glass-card h3 {
        font-size: 28px;
    }
    
    .glass-card p {
        font-size: 18px;
    }
    
    .circle, .circle2 {
        width: 500px;
        height: 500px;
    }
    
    .sticky-note {
        right: 50px;
        transform: rotate(0deg);
    }
    
    @keyframes float {
        0%, 100% { transform: rotate(0deg) translateY(0); }
        50% { transform: rotate(0deg) translateY(-5px); }
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }
    
    /* Mobile navigation stays the same as 768px */
    .nav {
        padding: 0.8rem;
    }
    
    .im202 {
        width: 35px;
    }
    
    .h1 {
        font-size: 40px;
    }
    
    .h3 {
        font-size: 32px;
    }
    
    .h4, .h44 {
        font-size: 18px;
    }
    
    .h333 {
        font-size: 20px;
        margin-top: 80px;
        margin-bottom: 80px;
    }
    
    .im1 {
        width: 250px;
    }
    
    .glass-card {
        width: 100%;
        margin: 10px 0;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .glass-card h3 {
        font-size: 24px;
    }
    
    .glass-card p {
        font-size: 16px;
    }
    
    .bt2 {
        font-size: 20px;
        padding: 8px 16px;
    }
    
    .footer {
        padding: 30px 5%;
    }
    
    .h33 {
        font-size: 28px;
    }
    
    .h444 {
        font-size: 18px;
    }
    
    .ftt {
        font-size: 18px;
    }
    
    .circle, .circle2 {
        width: 400px;
        height: 400px;
    }
}